Chart for WPF/Silverlight
Point の配列としてのデータコンテキスト
グラフ機能 > データ連結 > データコンテキストのバインディング > Point の配列としてのデータコンテキスト

次のコードは、データコンテキストを Point の配列として使用する方法を示しています。

C#
コードのコピー
c1Chart1.Reset(true);
c1Chart1.DataContext = new Point[] { new Point(1, 1), new Point(2, 2), new Point(3, 4), new Point(4, 1) };
c1Chart1.ChartType = ChartType.LineSymbols;
関連トピック